× Lesson 1 Lesson 2 Lesson 3 Lesson 4 Lesson 5 Lesson 6 Lesson 7 Lesson 8 Lesson 9 Lesson 10 Lesson 11 Lesson 12 Lesson 13 Lesson 14 Lesson 15 Lesson 16 Lesson 17 Lesson 18 Lesson 19 Lesson 20 Lesson 21 Lesson 22 Lesson 23 Lesson 24 Lesson 25 Mini Lesson 1 Mini Lesson 2 Mini Lesson 3 Mini Lesson 4 Mini Lesson 5

Lessons

Lesson 5 - Operators

Operators are things like +, -, *, /, which are addition, subtraction, multiplication, and division respectively, and can be used to perform math equations

These operators can peform the math equations with integers, and can be used as values for variables and print()

For variables, you can try:

number = 2 + 2

Or something more complex with a print():

number = 2 / 2 * 42 + 32 - 7 / 2
print(number)

Or print it directly without using a variable:

print(2 / 2 * 42 + 32 - 7 / 2)